home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 013 / remove.arc / RM.TXT < prev   
Encoding:
Text File  |  1986-08-18  |  1.4 KB  |  45 lines

  1.                                                 RM.TXT
  2.  
  3. remove files                                    Class: Unix
  4.  
  5. NAME
  6.     RM                              Remove files
  7.  
  8. SYNOPSIS
  9.     rm [-finrv] <file>...
  10.     
  11. DESCRIPTION
  12.     Removes files from a disk.
  13.  
  14. FLAGS
  15.     -f      forcably remove, even if marked as Read Only
  16.     -i      inquire prior to the removal
  17.     -n      do not actual delete, just show messages. (look before you leap)
  18.     -r      recursive delete; removes all subsequent files and sub-directories.
  19.     -v      verbose; show all messages.
  20.  
  21. NOTES
  22.     Recursive remove is useful in deleting entire directory including all
  23.     files and sub-directories. Prior to doing this, it is recommended that
  24.     you include the 'n' and 'v' options to see what will happen before
  25.     actually performing the removals.
  26.     
  27.     The environment variable RM is used to alter the defaults used by the
  28.     program.
  29.         SET RM=v
  30.     will result in always being in the verbose mode. To override this
  31.     default specify 'v' in the command line.
  32.     RM -v file.exe
  33.     will shut off the verbose mode in the above example.
  34.  
  35.     Wild cards may be used in a fashion similar to MSDOS and UNIX.
  36.     ?       any character
  37.     *       several characters
  38.     .       current directory
  39.     ..      previous directory
  40.     note:
  41.         '*' by itself wil expand to *.* (????????.???)
  42.  
  43.  
  44.  
  45.